home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / pascal / tch_tpas.zip / PROG1.PAS < prev    next >
Pascal/Delphi Source File  |  1986-04-05  |  512b  |  18 lines

  1. PROGRAM PROG1;
  2. {$U+          Copyright (C), 1985 by Lyle Faurot.  All rights reserved.
  3.  
  4.     New Topics: Load, Compile, and Run a sample program.
  5.  
  6. }
  7.  
  8.  
  9. BEGIN
  10.   WriteLn('        Welcome to the Turbo-Lesson Tutorials!');
  11.   WriteLn;
  12.   WriteLn('If this message is printing on your screen, you have');
  13.   WriteLn('  1.  Successfully loaded TURBO');
  14.   WriteLn('  2.  Loaded, Compiled, and Run a sample program');
  15.   WriteLn;
  16.   WriteLn('********* NOW, ON TO BIGGER CHALLENGES! ***********');
  17. END.
  18.